Newer
Older
taehui / qwilight-fe / src / app / [language] / avatar / loading.tsx
@Taehui Taehui on 16 Mar 208 bytes 2024-03-17 오전 1:28
import { useTranslations } from "next-intl";

import LoadingLayer from "@/LoadingLayer";

export default function Loading() {
  const t = useTranslations();

  return <LoadingLayer text={t("toAvatar")} />;
}